home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / etc / profile.d / pkgconfig.csh next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2007-05-24  |  194 b   |  7 lines

  1. #!/bin/csh
  2. if ( $?PKG_CONFIG_PATH ) then
  3.     setenv PKG_CONFIG_PATH ${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig
  4. else
  5.     setenv PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/usr/lib/pkgconfig
  6. endif
  7.